home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00312.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  391 b   |  19 lines

  1. on enterFrame
  2.   global fullscreenG
  3.   if fullscreenG = 1 then
  4.     puppetSprite(48, 1)
  5.     set the height of sprite 48 to 480
  6.     set the width of sprite 48 to 640
  7.     updateStage()
  8.     set the visible of sprite 48 to 1
  9.     updateStage()
  10.   else
  11.     puppetSprite(48, 1)
  12.     set Double to 1
  13.     HalfScreen()
  14.     updateStage()
  15.     set the visible of sprite 48 to 1
  16.     updateStage()
  17.   end if
  18. end
  19.